home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / -archivi / -recent2 / clib37x.lha / CLib37x / ReadMe.VBCC < prev    next >
Text File  |  1997-12-19  |  778b  |  29 lines

  1. VBCC 0.5 note:
  2. --------------
  3. [Patrizio Biancalani <patb@mbox.match.it> ]
  4.  
  5. I have corrected compiler.h, libinit.h and Startup.c to work with
  6. VBCC V0.5, too - but I don't know about the previous versions.
  7.  
  8. The correction isn't very elegant but works. To compile, if you have a make
  9. utility compatible with the gnu make, you can type:
  10.  
  11. >make -f makefile.vbcc
  12.  
  13. In the other case you must do it as follows:
  14.  
  15. >vc -O2 -+ -sc -DVBCC -c libinit.c
  16. >vc -O2 -+ -sc -DVBCC -c startup.c
  17. >vc -O2 -+ -sc -DVBCC -c Samplefuncs.c
  18.  
  19. (note: you can ignore all eventual warnings)
  20.  
  21. then:
  22.  
  23. >vc -nostdlib -lamiga -o example.library libinit.o startup.o samplefuncs.o
  24.  
  25.  
  26. Note: remember that the include directory must be in the same directory as
  27.       the modules libinit.c, startup.c and samplefuncs.c.
  28.  
  29.